func time.isDigit

10 uses

	time (current package)
		format.go#L305: 				if !isDigit(layout, j) {
		format.go#L899: func isDigit[bytes []byte | string](s bytes, i int) bool {
		format.go#L911: 	if !isDigit(s, 0) {
		format.go#L914: 	if !isDigit(s, 1) {
		format.go#L928: 	for i = 0; i < 3 && isDigit(s, i); i++ {
		format.go#L1088: 			if len(value) < 4 || !isDigit(value, 0) {
		format.go#L1152: 			if len(value) >= 2 && commaOrPeriod(value[0]) && isDigit(value, 1) {
		format.go#L1161: 				for ; n < len(value) && isDigit(value, n); n++ {
		format_rfc3339.go#L120: 	if len(s) >= 2 && s[0] == '.' && isDigit(s, 1) {
		format_rfc3339.go#L122: 		for ; n < len(s) && isDigit(s, n); n++ {